home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: insert Comment~wraps the current selection with
- <COMMENT> ... </COMMENT> tags.
- @EndTool:
- @Summary: insert Comment~wraps selection with the Comment tag
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- var upperCaseHtmlTags = getMapFileValue("Preferences", "Upper Case HTML Tags", true);
- if(upperCaseHtmlTags)
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</COMMENT>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<COMMENT>");
- }
- else
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</comment>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<comment>");
- }
- editor.setActive("Insert <Comment> Tag");
- }
- }
-
- !!/Script
-